@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&family=Tajawal:wght@400;700&display=swap');
*{
  margin: 0;
  padding: 0;
}

.clear{
  clear: both;
}

body {
  margin: 0;
  font-family: 'Tajawal', sans-serif;  
  background-color: #e4effa;
}

.navbar-wrapper {
  background-color: #0f322c;
  padding: 10px 0 0 0;
  text-align: center;
  overflow: visible;
  position: relative;
}

.nav-logo {
  height: 85px;
  margin-top: 10px;
}

#lang-btn {
  background-color: #0f322c;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 7px 11px rgba(0, 0, 0, 2.1);
}

#lang-btn:hover {
  background-color: #87bd4a;
  transform: scale(1.05);
}

.navbar {
  background-color: #0f322c;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  gap: 45px;
  overflow: visible;
  position: relative;
}

.navbar a {
  font-size: 16px;
  color: white;
  text-align: center;
  text-decoration: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}

.navbar a:hover,
.dropdown:hover .dropbtn {
  color: #87bd4a;
}

.navbar a::after,
.dropbtn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #87bd4a;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.25s linear;
}

.navbar a:hover::after,
.dropdown:hover .dropbtn::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown .dropbtn {
  background: transparent;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 125%;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  min-width: 160px;
  border-radius: 8px;
  padding: 15px 0;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 999;
  overflow: visible;
}

.dropdown-content::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
  z-index: 1000;
}

.dropdown-content a {
  color: #333;
  text-decoration: none;
  display: block;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: #87bd4a;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #87bd4a;
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.25s linear;
}

.submenu {
  position: relative;
}

.submenu-content {
  display: none;
  position: absolute;
  inset-block-start: -20%;        
  inset-inline-start: 100%;     
  background: #fff;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  border-radius: 10px;
  padding: 10px 0;
  z-index: 1000;
}

.submenu:hover .submenu-content {
  display: block;
}

[dir="rtl"] .submenu-content {
  inset-inline-start: 100%;   
  inset-inline-end: auto;    
}

.comingsoon-text {
  text-align: center;
  margin-top: 150px;
  margin-bottom: 150px;
}

.coming-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #0f322c;
  animation: glowPulse 1.5s ease-in-out infinite;
}

@keyframes glowPulse {
  0% { text-shadow: 0 0 10px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 204, 255, 0.5); }
  50% { text-shadow: 0 0 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 204, 255, 0.7); }
  100% { text-shadow: 0 0 10px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 204, 255, 0.5); }
}


.footer-outer{
  background:#0f322c;             
}

.footer{
  max-width: 1200px;               
  margin: 0 auto;
  padding: 32px 24px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "left logo right";
  align-items: center;
  column-gap: clamp(16px, 3vw, 40px);
  row-gap: 20px;

  text-align: center;              
}

.footer-left  { grid-area: left;  display:flex; flex-direction:column; align-items:center; gap:10px; }
.footer-middle{ grid-area: logo;  display:flex; align-items:center; justify-content:center; }
.footer-right { grid-area: right; display:flex; flex-direction:column; align-items:center; gap:10px; }

.footer-middle-img{ width: clamp(140px, 20vw, 220px); height:auto; }

.footer-right-icons{ display:flex; flex-wrap:wrap; gap:14px; justify-content:center; }
.footer-right-img{ width:34px; height:34px; transition:transform .3s ease; }
.footer-right-img:hover{ transform:scale(1.12); }

.footer-left-h1,
.footer-right-h1{ color:#87bd4a; margin:0 0 6px; font-weight:700; }

.footer-left-h3{
  color: #87bd4a;
}

.footer p,
.footer .phone,
.footer .email{ color:#87bd4a; margin:0; font-size:16px; }

.footer .phone, .footer .email{ direction:ltr; unicode-bidi:isolate; }

[dir="rtl"] .footer{
  flex-direction:row-reverse; 
}

[dir="rtl"] .footer-right-icons{
  justify-content:flex-end;  
}

@media (max-width: 820px){
  .footer{
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "left"
      "right";
    justify-items: center;
  }
}